home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 2
/
Merciful - Disc 2.iso
/
software
/
i
/
imagefxv2.1a.lha
/
ImageFX
/
Rexx
/
CineMorph
/
SelectAll.cmorph
< prev
next >
Wrap
Text File
|
1996-03-02
|
287b
|
22 lines
/*
* Arexx program for CineMorph 2.0
*
* Select all points in the grid.
* Written by Thomas Krehbiel
*
*/
OPTIONS RESULTS
GetStatus GridSize
PARSE VAR result gridw gridh
ActivePoint 0 0
DO j = 0 TO gridh-1
DO i = 0 TO gridw-1
ActivePoint i j ADD
END
END
EXIT